home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20020314-20021006 / 000227_ruvenakiash@hotmail.com_Fri Jul 19 13:50:30 EDT 2002.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  54 lines

  1. Article: 13539 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!panix!bloom-beacon.mit.edu!newsfeed.stanford.edu!postnews1.google.com!not-for-mail
  3. From: ruvenakiash@hotmail.com (ruvena)
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: HELP!!!! How do you automate a kermit script?
  6. Date: 19 Jul 2002 10:46:19 -0700
  7. Organization: http://groups.google.com/
  8. Lines: 35
  9. Message-ID: <b85d456a.0207190946.10df5662@posting.google.com>
  10. References: <b85d456a.0207190400.324a0317@posting.google.com> <ah941s$e43$1@watsol.cc.columbia.edu>
  11. NNTP-Posting-Host: 198.165.121.24
  12. Content-Type: text/plain; charset=ISO-8859-1
  13. Content-Transfer-Encoding: 8bit
  14. X-Trace: posting.google.com 1027100779 3836 127.0.0.1 (19 Jul 2002 17:46:19 GMT)
  15. X-Complaints-To: groups-abuse@google.com
  16. NNTP-Posting-Date: 19 Jul 2002 17:46:19 GMT
  17. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:13539
  18.  
  19. fdc@columbia.edu (Frank da Cruz) wrote in message news:<ah941s$e43$1@watsol.cc.columbia.edu>...
  20. > In article <b85d456a.0207190400.324a0317@posting.google.com>,
  21. > ruvena <ruvenakiash@hotmail.com> wrote:
  22. > : I am trying to run a kermit script that will download data from a
  23. > : remote site automatically based on the time of day on the system
  24. > : clock.
  25. > : 
  26. > : What do you do to be able to automate the .ksc file so that it will
  27. > : run at a certain time every day?
  28. > :
  29. > You can do it outside of Kermit or inside.  How you do it outside
  30. > depends on the operating system.  In Unix, you would use a cron or at
  31. > job.  In VMS, the batch system lets you run jobs at specified times.
  32. > Some versions of Windows might have something for this but I'm not
  33. > familiar with them.
  34. > To do it inside Kermit, use the PAUSE command in your script:
  35. > Syntax:  PAUSE [ { number-of-seconds, hh:mm:ss } ]
  36. > Example: PAUSE 3  or  PAUSE 14:52:30
  37. >   Do nothing for the specified number of seconds or until the given time of
  38. >   day in 24-hour hh:mm:ss notation.  If the time of day is earlier than the
  39. >   current time, it is assumed to be tomorrow.  If no argument given, one
  40. >   second is used.  The pause can be interrupted by typing any character on
  41. >   the keyboard unless SLEEP CANCELLATION is OFF.  If interrupted, PAUSE
  42. >   fails, otherwise it succeeds.  Synonym: SLEEP.
  43. > - Frank
  44.  
  45. Hi!
  46.  
  47. Thanks very much for the post. What if i were to do it in UNIX/QNX how
  48. would i use the cron?
  49.  
  50. *Ruvena*
  51.